I understand how to change/set accesses for groups and users, but I don't know how to use a script to change "Everyone else"
My script is something like what you nsee below. I have a loop in place (which isn't shown below) that loop through each module in a module list (that I inport using a dialog box) and sets the permission in accordance to what I set below.
I can change every permission except "Everybody else". How do I change it using the parameters below, thanks.
Permission TTTTT = read|create|modify|delete|control
Permission TTTTF = read|create|modify|delete
Permission FFFFF = null
Permission TFFFF = read
Permission TFTFF = read|modify
Permission TTTFF = read|create|modify
readMe(get fName1DBE)
Module mod
for mod in moduleList do
{
set(mod,TTTTT, "Configuration Managers")
set(mod,TTTTF, "Administrators")
set(mod,TFFFF, "Reviewers")
set(mod,FFFFF, "Everyone else")
}
SystemAdmin - Thu May 21 15:17:58 EDT 2009 |